home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / barcodes.zip / SAMPLE1.ZIP / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1994-11-07  |  1KB  |  45 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. // (c) Copyright 1994 HEX TECHNOLOGY. All rights reserved.
  6. // This sample code is provided as a example implementation
  7. // using barcodes.dll.  You may only distribute or modify this
  8. // code if you purchase a license for barcodes.dll.
  9.  
  10. class CMainFrame : public CMDIFrameWnd
  11. {
  12.     DECLARE_DYNAMIC(CMainFrame)
  13. public:
  14.     CMainFrame();
  15.  
  16. // Attributes
  17. public:
  18.  
  19. // Operations
  20. public:
  21.  
  22. // Implementation
  23. public:
  24.     virtual ~CMainFrame();
  25. #ifdef _DEBUG
  26.     virtual void AssertValid() const;
  27.     virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29.  
  30. protected:  // control bar embedded members
  31.     CStatusBar  m_wndStatusBar;
  32.     CToolBar    m_wndToolBar;
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CMainFrame)
  37.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code!
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.